Fix reference to HttpXendClientProtocol. This was previously referring to the
authoremellor@leeni.uk.xensource.com <emellor@leeni.uk.xensource.com>
Tue, 13 Dec 2005 17:31:35 +0000 (17:31 +0000)
committeremellor@leeni.uk.xensource.com <emellor@leeni.uk.xensource.com>
Tue, 13 Dec 2005 17:31:35 +0000 (17:31 +0000)
abstract base class, which was never going to work.  (This is debugging code
only, so I presume that no-one has used it for a long time, but it's doing no
harm hanging around.)

Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/python/xen/xend/XendClient.py

index 4461304cdad061b2f308a51b4d1a0e723114f86c..920f4fa1844f06545ad4362a0d9834cdf09c8c88 100644 (file)
@@ -354,7 +354,7 @@ class Xend:
 def getHttpServer(srv=None):
     """Create and return a xend client.
     """
-    return Xend(srv=srv, client=XendClientProtocol())
+    return Xend(srv=srv, client=HttpXendClientProtocol())
 
 def getUnixServer(srv=None):
     """Create and return a unix-domain xend client.